29 |
30 | {% block page_inner %} 31 | {% for section in content %} 32 |
33 | {% if section.type == "normal" %} 34 | {% autoescape false %}{{ section.content }}{% endautoescape %} 35 | {% endif %} 36 |
37 | {% endfor %} 38 | {% endblock %} 39 |
40 |